type runtime.sudog
41 uses
runtime (current package)
chan.go#L56: first *sudog
chan.go#L57: last *sudog
chan.go#L305: func send(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L375: func sendDirect(t *_type, sg *sudog, src unsafe.Pointer) {
chan.go#L388: func recvDirect(t *_type, sg *sudog, dst unsafe.Pointer) {
chan.go#L674: func recv(c *hchan, sg *sudog, ep unsafe.Pointer, unlockf func(), skip int) {
chan.go#L840: func (q *waitq) enqueue(sgp *sudog) {
chan.go#L854: func (q *waitq) dequeue() *sudog {
chan.go#L895: func racesync(c *hchan, sg *sudog) {
chan.go#L905: func racenotify(c *hchan, idx uint, sg *sudog) {
mgc.go#L1811: var sg, sgnext *sudog
proc.go#L450: func acquireSudog() *sudog {
proc.go#L473: pp.sudogcache = append(pp.sudogcache, new(sudog))
proc.go#L488: func releaseSudog(s *sudog) {
proc.go#L515: var first, last *sudog
runtime2.go#L356: type sudog struct {
runtime2.go#L363: next *sudog
runtime2.go#L364: prev *sudog
runtime2.go#L393: parent *sudog // semaRoot binary tree
runtime2.go#L394: waitlink *sudog // g.waiting list or semaRoot
runtime2.go#L395: waittail *sudog // semaRoot
runtime2.go#L506: waiting *sudog // sudog structures this g is waiting on (that have a valid elem ptr); in lock order
runtime2.go#L693: sudogcache []*sudog
runtime2.go#L694: sudogbuf [128]*sudog
runtime2.go#L827: sudogcache *sudog
select.go#L238: sg *sudog
select.go#L241: sglist *sudog
select.go#L242: sgnext *sudog
select.go#L244: nextp **sudog
select.go#L341: sg = (*sudog)(gp.param)
select.go#L611: func (q *waitq) dequeueSudoG(sgp *sudog) {
sema.go#L42: treap *sudog // root of balanced tree of unique waiters.
sema.go#L113: func readyWithTime(s *sudog, traceskip int) {
sema.go#L285: func (root *semaRoot) queue(addr *uint32, s *sudog, lifo bool) {
sema.go#L292: var last *sudog
sema.go#L383: func (root *semaRoot) dequeue(addr *uint32) (found *sudog, now, tailtime int64) {
sema.go#L464: func (root *semaRoot) rotateLeft(x *sudog) {
sema.go#L492: func (root *semaRoot) rotateRight(y *sudog) {
sema.go#L537: head *sudog
sema.go#L538: tail *sudog
sema.go#L662: for p, s := (*sudog)(nil), l.head; s != nil; p, s = s, s.next {
 |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |